home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI Hot Mix 17
/
Hot Mix 17.iso
/
HM17_SGI
/
research
/
lib
/
idlinfo.pro
< prev
next >
Wrap
Text File
|
1997-07-08
|
877b
|
54 lines
; $Id: idlinfo.pro,v 1.1 1997/04/17 20:58:25 ali Exp $
;
; Copyright (c) 1997, Research Systems, Inc. All rights reserved.
; Unauthorized reproduction prohibited.
;
;+NODOCUMENT
; NAME:
; IDLINFO
;
; PURPOSE:
; Print contact information for Research Systems and offer other
; basic information on using or demoing IDL.
;
; CALLING SEQUENCE:
;
; IDLINFO
;
; INPUTS:
; None.
;
; KEYWORDS:
; None.
;
; OUTPUT:
; Basic information is printed.
;
; COMMON BLOCKS:
; NONE.
;
; SIDE EFFECTS:
; None.
;
; RESTRICTIONS:
; None.
;
; MODIFICATION HISTORY:
; Written, DMS, RSI, 17 April 1997
;
;-
pro IDLInfo
FileName = filepath('idlinfo.txt', SUBDIR=['help','motd'])
openr, Lun, Filename, Error=err, /GET_LUN
if err lt 0 then return
line = ''
while not eof(Lun) do begin
readf, lun, line
print, line
endwhile
free_lun, lun
end